* {
  box-sizing: border-box;
}

body {
  margin: 0px;
}

figure {
  margin: 0px;
}

img {
  width: 100%;
}

#landing-container {
  width: 100%;
  min-height: 100vh;
  padding: 12px 10vw;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

#info-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 12px 0;
}

#info-container > figure {
  max-width: 250px;
}

#info-text > h3 {
  margin: 0px;
}

/* -------------------------------------- */

#logo-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  width: 100%;
  max-width: 450px;
  margin: 50px auto;
}

#logo-container > figure,
#logo-container > p {
  flex-basis: 100%;
  text-align: center;
}

#centered-text {
  max-width: 500px;
  text-align: center;
}

/* -------------------------------------- */

#app-stores {
  display: flex;
  justify-content: center;
}

.app-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-image: linear-gradient(60deg, #010101 50%, #1b1b1b 0%);
  margin: 12px;
  padding: 12px;
  max-width: 250px;
  width: 100%;
  border-radius: 6px;
  -webkit-box-shadow: 3px 3px 5px 0px #010101;
  -moz-box-shadow: 3px 3px 5px 0px #010101;
  box-shadow: 3px 3px 5px 0px #010101;
}

.app-container > img {
  max-height: 50px;
  width: unset;
  object-fit: contain;
}

.download-on {
  color: white;
  margin-left: 12px;
}

.download-on > h1,
.download-on > h3 {
  margin: 0px;
}

@media only screen and (max-width: 1023px) {
  #app-stores {
    flex-wrap: wrap;
  }

  #landing-container {
      padding: 12px;
  }
}

@media only screen and (max-width: 768px) {
  #info-container {
    flex-wrap: wrap;
  }

  #info-text {
    padding: 12px 0;
    margin: 0 auto;
  }

  #info-container > figure {
    margin: 12 auto;
  }
}
